
html {
  scroll-behavior: smooth;
}

.wrapper {
    /*height: 100vh;   responsive height */
    background-color: #f7edc0; 
    font-family: sans-serif; /* Use the same font family as your existing CSS */
}

.header {
    overflow: hidden;

    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    width: 100%; /* Ensure full width */
    transition: background-color 0.3s; /* Add transition for background color */
    box-shadow: rgba(0, 0, 0, 0.15) 0px 4px 4px 0px;
}

.fixed-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: white; /* Set background color for fixed header */
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); /* Add a subtle box shadow */
}

/* Banner logo */
.header img {
    width: 350px; /* Adjust the width as needed */
    height: 270px; /* Maintain aspect ratio */
    margin-left: 10px;
}

 body {
            margin: 0; /* Remove default margin to ensure full width */
            padding: 0; /* Remove default padding */
        }

        /* Add a margin to the body to offset the fixed header */
        body.with-fixed-header {
            margin-top: 60px; /* Adjust the value based on your header height */
        }


/* Navigation button styles */
.col1 {
    display: flex; /* Make it a flex container */
    gap: 10px; /* Add space between buttons */
}

.col1 a {
    text-align: center;
    font-size: 20px;
    font-family: sans-serif;
    text-decoration: none;
    text-shadow: 0.5px 0.5px gray;
    color: #016ea7;
    /*background-color: #4473c4;*/
    padding: 8px;
    border-radius: 4px;
    margin-right: 2px;
}

.col1 a:hover {
    transition-duration: 0.6s;
    color:black;
}

.col1 a#book {
    text-align: center;
    font-size: 18px;
    font-family: sans-serif;
    text-decoration: none;
    text-shadow: 0.5px 0.5px gray;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.6s; /* Add transition for background color */
    background-color: black;
    color:white;
}


#contact{
  font-family: sans-serif;
}

.footer {
    background-color: #0E2339;
    color: white;
    padding: 18px;
    text-align: center;
}

#logofoot {
    width: 300px; /* Adjust as needed */
    height: auto; /* Maintain aspect ratio */
}

.social-icons img {
    width: 50px;
}

#fb img{
    width: 48.5px;
}

#insta img{
  margin-left: 10px;
}
.copyright {
    background-color: #016ea7;
    padding: 1px;
    text-align: center;
    color: white;
    font-family: sans-serif;
    font-size: 12px;
    /*text-shadow: 0.5px 0.5px white;*/
}


/**************************************/


.row1{
  height: 420px;
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  color: white;
}

.section2{
  height:380px;
  /*width: 58%;*/
  width: 55%;
  background-color: #0E2339;
  border-radius: 4px;
  padding: 6px;
  text-align: center;
}



#calendar {
  font-size: 14px;
  padding-left:0px;
}
#cbg{

  background-color: white;
  border-radius: 4px;
  height:260px;
}
#legendcont{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  color: white;
  background-color: #f7edc0; 
}

#legend {
    height: 80px;
    width: 120px;
    background-color: white;
    padding: 2px;
    border-radius: 4px;
    margin: auto; /* Center the element horizontally */
    margin-bottom: 20px; /* Add top margin for spacing */
}

.section2 select{
  font-size: 14px;
}

.section2 span{
  font-size:14px;
  font-weight: bold;
}

button{
  background-color: #016ea7;
  color: white;
  border-radius: 4px;
  border: none;
  height: 20px;
  font-size: 14px;
  font-weight: bold;
  }

button:hover{
  background-color: black ;
  transition-duration: 0.4s;
  }

.red{
  color: white;
  background-color:red;
}
.amber{
  color: white;
  background-color:orange;
}
.green{
  color: white;
  background-color:green;
}

.def{
  color: black;
  background-color:white;
}


#calendar .head{
  float: left;
  margin-left: 2px;
  width: 12%;
  /*height:20px;*/
  padding: 4px;
  border: 1px solid #ccc;
  text-align: center;
  border-radius: 4px;
  background-color: #016ea7;
  color: white;
  font-weight: bold;
}
#calendar .day{
  float: left;
  margin-left: 2px;
  width: 12%;
  height:20px;
  padding: 4px;
  margin-top: 2px;
  border: 1px solid #ccc;
  text-align: center;
  border-radius: 4px;
  font-weight: bold;
}

#calendar a{
  text-decoration: none;
  color: black;
  text-shadow: none;
}
#calendar .day a:hover{
  color: black;
}
#calendar .blank{
  float: left;
  margin-left: 2px;
  width: 12%;
  height:20px;
  padding: 4px;
  border: 1px solid white;
  text-align: center;
  border-radius: 4px;
  font-weight: bold;
}

#indicator{
  margin-top:30px;
}

/*@media only screen and (max-width: 600px) {
    .section2{
      width: 100%;
    }
    .row1{
      width: 100%;
    }

}*/